WISLYFLUX DOCUMENTATION

Introduction

WislyFlux is a human-readable scripting and logic programming language designed for automation, console applications, workflows, and beginner-friendly coding. It allows developers to write commands using natural English-style syntax while interacting with variables, loops, conditions, input systems, and runtime execution.

File Extension:
.wfx

Runtime Type:
Interpreted Programming Language

Main Purpose:
Logic Building
Automation
Console Applications
Workflow Execution
Interactive Runtime Systems



INSTALLATION

Step 1:
Download WislyFlux.exe

Step 2:
Open the executable file

Step 3:
WislyFlux runtime will launch automatically

Runtime Example:

=== Welcome To WislyFlux ===
Extension: .wfx
Type: help



GETTING STARTED

Basic Welcome Command

Command:
hello

Output:
Welcome To WislyFlux



PRINTING OUTPUT

Print Direct Text

Command:
broadcast => Hello World

Output:
Hello World



VARIABLE SYSTEM

Integer Variables

Command:
inject integer into age from 20

Output:
Integer Stored

Stored In Memory:
age = 20



Text Variables

Command:
inject text into student from Ali

Output:
Text Stored

Stored In Memory:
student = Ali



PRINTING VARIABLES

Command:
broadcast => student

Output:
Ali



Another Example

Command:
broadcast => age

Output:
20



USER INPUT SYSTEM

Command:
capture input into username

Runtime:
INPUT >>>

User Types:
Ahmed

Output:
Input Stored

Stored Value:
username = Ahmed



Printing User Input

Command:
broadcast => username

Output:
Ahmed



LOOP SYSTEM

Command:
cycle 3

Runtime:
Loop Message >>>

User Types:
Hello

Output:
Hello
Hello
Hello



CONDITION SYSTEM

Command:
verify age greater_than 18

Meaning:
Check if age is greater than 18

Example:

inject integer into age from 20

verify age greater_than 18

Output:
Condition True



Another Example

inject integer into marks from 40

verify marks greater_than 50

Output:
Condition False



FUNCTION SYSTEM

Command:
forge function greet

Output:
Function Created: greet



FILE EXECUTION

Command:
runfile main.wfx

Description:
Executes external WislyFlux script files from storage.



Example main.wfx File

hello

inject text into user from Ahmed

broadcast => user



RUNTIME OUTPUT

Welcome To WislyFlux

Text Stored

Ahmed



EXITING WISLYFLUX

Command:
terminate

Output:
WislyFlux Closed



FULL EXAMPLE PROGRAM

hello

inject text into student from Ali

inject integer into marks from 85

broadcast => student

broadcast => marks

verify marks greater_than 50



FULL PROGRAM OUTPUT

Welcome To WislyFlux

Text Stored

Integer Stored

Ali

85

Condition True



LANGUAGE FEATURES

Human-Readable Syntax
Dynamic Variable System
Loop Execution
Conditional Logic
Interactive Runtime
Console-Based Applications
Automation Workflows
Script File Execution
Beginner Friendly Structure



WHAT CAN WISLYFLUX BUILD?

Console Applications
Logic Systems
Automation Scripts
Interactive CLI Programs
Runtime Workflows
Educational Programming Projects
Custom Script Engines
Basic AI Workflow Systems



FUTURE ROADMAP

Advanced Functions
If Else Blocks
Arrays
Objects
GUI System
AI Commands
Web Integration
Package Manager
Module System
Native Compiler